Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: toss/frontend-fundamentals
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f66b5385a5
Choose a base ref
...
head repository: toss/frontend-fundamentals
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f6ca50b2c3
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 18, 2025

  1. docs: update wrong codeblock highlight (#119)

    jsparkdev authored Jan 18, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f6ca50b View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 code/examples/item-edit-modal.md
  2. +1 −1 en/code/examples/item-edit-modal.md
2 changes: 1 addition & 1 deletion code/examples/item-edit-modal.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ Props Drilling은 부모 컴포넌트와 자식 컴포넌트 사이에 결합도

사용자가 입력한 키워드는 `keyword`, 선택할 수 있는 아이템은 `items`, 추천 아이템의 목록은 `recommendedItems` 프롭으로 전달돼요.

```tsx 2,9-10,12-13,29-32
```tsx 2,9-10,12-13,39-42
function ItemEditModal({ open, items, recommendedItems, onConfirm, onClose }) {
const [keyword, setKeyword] = useState("");

2 changes: 1 addition & 1 deletion en/code/examples/item-edit-modal.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ The user can enter a keyword to search the item list, and when the desired item

The keyword entered by the user is passed as the `keyword` prop, the selectable items are passed as the `items` prop, and the list of recommended items is passed as the `recommendedItems` prop.

```tsx 2,9-10,12-13,29-32
```tsx 2,9-10,12-13,39-42
function ItemEditModal({ open, items, recommendedItems, onConfirm, onClose }) {
const [keyword, setKeyword] = useState("");